home *** CD-ROM | disk | FTP | other *** search
- /*
- cvplatfm.h
-
- List of platforms window
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #ifndef cvplatfm_h
- #define cvplatfm_h
- #include "mdiview.h"
-
- class VEditBox;
- class VFont;
- class DemoAppView;
-
- class PlatformView : public VMdiView {
- private:
- int platform;
- VEditBox *msgBox;
- VFont *listFont;
- VFont *msgFont;
- DemoAppView *mainWin;
-
- public:
- PlatformView(VFrame&, DemoAppView *);
- PlatformView();
- ~PlatformView();
-
- VClass *iam();
- boolean free();
-
- boolean close();
- boolean singleClick(int index);
- boolean doubleClick(int index);
- boolean givenFocus();
- };
-
- extern VClass *PlatformViewCls;
- #endif /* cvplatfm_h */
-